home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / s.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  124 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19.  
  20. float s_data[][2] = {
  21.     {0.860393, 5.283798},
  22.     {0.529473, 3.550052},
  23.     {0.992761, 4.491228},
  24.     {0.910031, 3.368421},
  25.     {1.240951, 3.830753},
  26.     {1.456050, 3.104231},
  27.     {1.935884, 3.517028},
  28.     {2.002068, 2.988648},
  29.     {2.763185, 3.533540},
  30.     {3.061013, 3.120743},
  31.     {3.391934, 3.748194},
  32.     {4.053774, 3.632611},
  33.     {3.822130, 4.540764},
  34.     {4.550155, 4.590299},
  35.     {3.656670, 5.465428},
  36.     {4.517063, 5.713106},
  37.     {3.276112, 5.894737},
  38.     {3.921407, 6.538700},
  39.     {2.299896, 6.736842},
  40.     {3.044467, 7.430341},
  41.     {1.886246, 7.496388},
  42.     {2.581179, 8.222910},
  43.     {1.902792, 8.751290},
  44.     {2.680455, 8.883385},
  45.     {2.283350, 9.312694},
  46.     {3.358842, 9.609907},
  47.     {3.507756, 9.907121},
  48.     {4.285419, 9.758514},
  49.     {5.112720, 9.973168},
  50.     {4.748707, 9.593395},
  51.  
  52. };
  53.  
  54. draw_s() {
  55.  
  56.     bgntmesh();
  57.     v2f(s_data[0]);
  58.     v2f(s_data[1]);
  59.     v2f(s_data[2]);
  60.     v2f(s_data[3]);
  61.     v2f(s_data[4]);
  62.     v2f(s_data[5]);
  63.     v2f(s_data[6]);
  64.     v2f(s_data[7]);
  65.     v2f(s_data[8]);
  66.     v2f(s_data[9]);
  67.     v2f(s_data[10]);
  68.     v2f(s_data[11]);
  69.     v2f(s_data[12]);
  70.     v2f(s_data[13]);
  71.     v2f(s_data[14]);
  72.     v2f(s_data[15]);
  73.     v2f(s_data[16]);
  74.     v2f(s_data[17]);
  75.     v2f(s_data[18]);
  76.     v2f(s_data[19]);
  77.     v2f(s_data[20]);
  78.     v2f(s_data[21]);
  79.     v2f(s_data[22]);
  80.     v2f(s_data[23]);
  81.     v2f(s_data[24]);
  82.     v2f(s_data[25]);
  83.     v2f(s_data[26]);
  84.     v2f(s_data[27]);
  85.     v2f(s_data[28]);
  86.     v2f(s_data[29]);
  87.     endtmesh();
  88.  
  89.     bgnline();
  90.     v2f(s_data[0]);
  91.     v2f(s_data[2]);
  92.     v2f(s_data[4]);
  93.     v2f(s_data[6]);
  94.     v2f(s_data[8]);
  95.     v2f(s_data[10]);
  96.     v2f(s_data[12]);
  97.     v2f(s_data[14]);
  98.     v2f(s_data[16]);
  99.     v2f(s_data[18]);
  100.     v2f(s_data[20]);
  101.     v2f(s_data[22]);
  102.     v2f(s_data[24]);
  103.     v2f(s_data[26]);
  104.     v2f(s_data[28]);
  105.     v2f(s_data[29]);
  106.     v2f(s_data[27]);
  107.     v2f(s_data[25]);
  108.     v2f(s_data[23]);
  109.     v2f(s_data[21]);
  110.     v2f(s_data[19]);
  111.     v2f(s_data[17]);
  112.     v2f(s_data[15]);
  113.     v2f(s_data[13]);
  114.     v2f(s_data[11]);
  115.     v2f(s_data[9]);
  116.     v2f(s_data[7]);
  117.     v2f(s_data[5]);
  118.     v2f(s_data[3]);
  119.     v2f(s_data[1]);
  120.     endline();
  121.  
  122. }
  123.  
  124.